home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Columbia Kermit
/
kermit.zip
/
newsgroups
/
misc.20030409-20031118
/
000090_ericboniface@chez.com_Tue May 20 12:21:47 EDT 2003.msg
< prev
next >
Wrap
Text File
|
2020-01-01
|
3KB
|
67 lines
Article: 14310 of comp.protocols.kermit.misc
Path: newsmaster.cc.columbia.edu!panix!bloom-beacon.mit.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
From: ericboniface@chez.com (Eric)
Newsgroups: comp.protocols.kermit.misc
Subject: Re: Kermit/SSL-TLS : connection refused
Date: 20 May 2003 08:57:01 -0700
Organization: http://groups.google.com/
Lines: 48
Message-ID: <c30aaa81.0305200757.3e414319@posting.google.com>
References: <c30aaa81.0305190714.f336f03@posting.google.com> <baatg9$fs7$1@watsol.cc.columbia.edu>
NNTP-Posting-Host: 192.6.111.74
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
X-Trace: posting.google.com 1053446222 15433 127.0.0.1 (20 May 2003 15:57:02 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: 20 May 2003 15:57:02 GMT
Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14310
fdc@columbia.edu (Frank da Cruz) wrote in message news:<baatg9$fs7$1@watsol.cc.columbia.edu>...
> In article <c30aaa81.0305190714.f336f03@posting.google.com>,
> Eric <ericboniface@chez.com> wrote:
> : finally, kermit works fine under HPUX11 with Socks library (an HPUX11
> : one, not dante).
> : I can connect to outside FTP server on standard port (21).
> :
> Good. For the benefit of others, could you explain exactly how you
> did this?
1)Change in makefile
- add SOCKSLIB=-L/opt/socks/lib
In hpux1100o+openssl:
- add $(LIBS) to "LNKFLAGS=-s $(LNKFLAGS) $(LIBS)"
- add -DCK_SOCKS -DCK_SOCKS5 to KFLAGS
- add $(SOCKSLIB) -lSocks to LIBS (Socks as the library is named
libSocks.a)
- check the order of -lssl -lcrypto (in this order)
- removal of zlib reference as I do not use it.
2) Code changes :
- change ckcmai.c : comment SOCKSinit (as it does not exist in HPUX
socks library)
- change ckcnet.c & ckcftp.c : comment SOCKS* function (do not exist
in socks library -
generate an error during link step)
/* #define accept SOCKSaccept
#define bind SOCKSbind
#define connect SOCKSconnect
#define getsockname SOCKSgetsockname
#define listen SOCKSlisten
#else Not SOCKS 5 */
> : Now I try to connect to SSL/TLS FTP server, but I always have a (very
> : quick) connection refused message.
> :
> : I try to put verbose on, but I did not have any message.
> : When I try to connect to "normal" site, I have verbose message.
> :
> : Do you have some ideas ?
> :
> See:
>
> http://www.columbia.edu/kermit/k95faq.html#ftp
It's really strange as I can not get any debugging information; I have
instantaneously a connection refused message.
On the server side, they do not have any trace of my tests.
Eric.